home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / Implementation / SystemProcess / ODXDpFns.h next >
Encoding:
C/C++ Source or Header  |  1997-02-13  |  802 b   |  31 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ODXDpFns.h
  3.  
  4.     Contains:    Functions duplicated between the old and new launchers. Declared
  5.                 here and defined twice, once in old launcher ocde and once in
  6.                 new launcher code.
  7.  
  8.     Owned by:    Nick Pilch
  9.  
  10.     Copyright:    © 1996 by Apple Computer, Inc., all rights reserved.
  11.  
  12.     Change History (most recent first):
  13.  
  14.          <4>    .06.1996    NP        10002: Launch time fixes, system process.
  15.          <3>    .05.1996    NP        10002: Launch time fixes.
  16.          <2>    .05.1996    NP        Changed signature of NotifyLaunchFailed.
  17.          <1>    .05.1996    NP        first checked in
  18.  
  19.     To Do:
  20. */
  21.  
  22. #ifndef _ODXDPFNS_
  23. #define _ODXDPFNS_
  24.  
  25. void    NotifyLaunchFailed(OSErr errorCode, Str255 appName, Str255 libName);
  26. void    ReportDocumentError(StringPtr docName, OSErr err);
  27. void    ReportErrorGeneric(StringPtr errorString);
  28. void    DocumentLaunched();
  29.  
  30. #endif /* _ODXDPFNS_ */
  31.